Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent

Documentation

Resolution Order

401
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Start Order

910
The start order represents the order in which this component has been started by the Nuxeo Runtime framework.
This number is interesting to tweak if your Java component interacts with other components, and needs to be started before or after another one.
It can be changed by implementing the method "Component#getApplicationStartedOrder()" on your Java component: components are sorted according to this reference value, in increasing order.
The default value is 1000, and the repository initialization uses number 100. Negative values can also be used.

Implementation

Class: org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent

Services

Extension Points

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent">
  <implementation
    class="org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent" />

  <documentation>
    @author Thierry Delprat (td@nuxeo.com)
  </documentation>

  <service>
    <provide
      interface="org.nuxeo.ecm.platform.pictures.tiles.api.PictureTilingService" />
  </service>


  <extension-point name="environment">
    <documentation>
    Extension point to contribute environement configuration
    @author Thierry Delprat (td@nuxeo.com)
    </documentation>
    <object
      class="org.nuxeo.ecm.platform.pictures.tiles.service.TilingConfigurationDescriptor" />
  </extension-point>

  <extension-point name="blobProperties">
    <documentation>
    Extension point to contribute the blob property to use for a given document type.
    @author Thomas Roger (troger@nuxeo.com)
    </documentation>
    <object
      class="org.nuxeo.ecm.platform.pictures.tiles.service.TilingBlobPropertyDescriptor" />
  </extension-point>

  <extension-point name="imagesToConvert">
    <documentation>
    Extension point to contribute which images need to be converted to jpeg before any tiling operation.
    @author Thomas Roger (troger@nuxeo.com)
    </documentation>
    <object
      class="org.nuxeo.ecm.platform.pictures.tiles.service.ImageToConvertDescriptor" />
  </extension-point>


<!--
  <extension-point name="settings">
    <documentation>
    Extension point to define default configuration for the spellchecker service
    @author Thierry Delprat (td@nuxeo.com)
    </documentation>
    <object
      class="org.nuxeo.ecm.platform.pictures.tiles.service.SettingsDescriptor" />
  </extension-point>
-->

</component>